mirror of
https://github.com/denoland/deno.git
synced 2024-11-14 16:33:45 -05:00
7 lines
281 B
TypeScript
7 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;
|
|
}
|