Files
vscode-extension-samples/notebook-renderer-react-sample/src/client/css.d.ts
Matt Bierner 73e249b3c1 Migrate all samples to eslint 9
Switches all samples to use eslint 9 with flat configs. I've tried to migrate existing settings as much as possible. However our eslint configs were also inconsistent so I've tried to align these too
2024-10-26 17:44:03 -07:00

5 lines
90 B
TypeScript

declare module '*.css' {
const classes: Record<string, string>;
export = classes;
}