summaryrefslogtreecommitdiff
path: root/js/plugins.d.ts
blob: 842a897de3265900a610b430c2dce50b345e0d9e (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2018-2019 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;
}