mirror of
https://github.com/ivabus/gui
synced 2025-06-07 15:50:27 +03:00

* remove unused components * remove pnpm * implementation of local dev pantry setup (#689)
9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
declare module "restructured" {
|
|
interface RestructuredElement {
|
|
children: RestructuredElement[];
|
|
stringify(): string;
|
|
type: string;
|
|
}
|
|
|
|
export function parse(rst: string): RestructuredElement;
|
|
}
|