deno/js/plugins.d.ts

10 lines
352 B
TypeScript
Raw Normal View History

2018-10-19 19:25:29 +00:00
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
2018-07-22 01:14:52 +00:00
// 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;
}