Archived
1
0
Fork 0
This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
paren/lib/types.d.ts

5 lines
95 B
TypeScript
Raw Normal View History

2022-03-17 11:53:53 +03:00
import { Elem } from "./nodes.js";
2022-03-16 22:45:15 +03:00
export interface Renderer<T> {
2022-03-18 22:00:44 +03:00
render(node: Elem): T;
2022-03-16 22:45:15 +03:00
}