blob: d1dae38852e88dd8e280fb58febec18931c761df (
plain)
1
2
3
4
5
6
7
|
// 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;
}
|