deno/js/plugins.d.ts
2018-07-22 03:16:17 +02:00

8 lines
281 B
TypeScript

// 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;
}