mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
8 lines
281 B
TypeScript
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;
|
||
|
}
|