@docfy/ember-vite
Version:
Vite plugin for Docfy Ember integration with @embroider/vite
30 lines • 616 B
TypeScript
import { Node } from 'unist';
interface Literal {
value: string;
}
export interface CodeNode extends Node, Literal {
type: 'code';
lang?: string;
meta?: string;
}
export interface DemoComponent {
name: DemoComponentName;
chunks: DemoComponentChunk[];
description?: {
title?: string;
ast: Node;
editUrl?: string;
};
}
export interface DemoComponentName {
dashCase: string;
pascalCase: string;
}
export interface DemoComponentChunk {
type: string;
code: string;
ext: string;
snippet: Node;
}
export {};
//# sourceMappingURL=types.d.ts.map