* docs: add jsdoc * feat: change enums to as const objects * chore(test): add themeColors.test.ts * fix: fix tests and bugs with strings.ts util * fix: path alias imports and tsconfig file bug * fix: remove --max-warnings 0
5 lines
124 B
TypeScript
5 lines
124 B
TypeScript
/* eslint-disable jsdoc/require-jsdoc */
|
|
export default interface HotReloadingMessages {
|
|
reloadExtension: () => void;
|
|
}
|