Skip to content

Commit b54ba02

Browse files
committed
fix(placeholders): Add T0, etc.
1 parent c5c3b34 commit b54ba02

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

source/placeholders.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* can be found in the LICENSE file at https://github.com/cartant/ts-snippet
44
*/
55

6+
export interface T0 { kind: "T0"; }
67
export interface T1 { kind: "T1"; }
78
export interface T2 { kind: "T2"; }
89
export interface T3 { kind: "T3"; }
@@ -16,6 +17,7 @@ export interface T10 { kind: "T10"; }
1617
export interface T11 { kind: "T11"; }
1718
export interface T12 { kind: "T12"; }
1819

20+
export declare const c0: T0;
1921
export declare const c1: T1;
2022
export declare const c2: T2;
2123
export declare const c3: T3;
@@ -29,6 +31,7 @@ export declare const c10: T10;
2931
export declare const c11: T11;
3032
export declare const c12: T12;
3133

34+
export declare let v0: T0;
3235
export declare let v1: T1;
3336
export declare let v2: T2;
3437
export declare let v3: T3;

0 commit comments

Comments
 (0)