mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
declare module 'vue' {
|
|
interface ComponentCustomProperties {
|
|
$greetingMessage: (key: string) => string;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
// eslint-disable-next-line no-var
|
|
var Components: Record<string, any>;
|
|
}
|
|
|
|
export default {};
|