UNPKG

148 BTypeScriptView Raw
1declare module "./index" {
2 interface List<A> {
3 append(value: A): List<A>;
4 nth(index: number): A | undefined;
5 }
6}
7export {};