summaryrefslogtreecommitdiff
path: root/js/plugins.d.ts
blob: e421bb5de81da468996204fd7f6a220643e53829 (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2018 the Deno authors. All rights reserved. MIT license.

// This allows TypeScript to resolve any modules that end with `!string`
// as there is a rollup plugin that will take any mids ending with `!string`
// and return them as a string to rollup for inlining
declare module "*!string" {
  const value: string;
  export default value;
}