UNPKG

430 BTypeScriptView Raw
1export type ComponentContent = 0;
2export type HelperContent = 1;
3export type StringContent = 2;
4export type EmptyContent = 3;
5export type SafeStringContent = 4;
6export type FragmentContent = 5;
7export type NodeContent = 6;
8export type OtherContent = 8;
9
10export type ContentType =
11 | ComponentContent
12 | HelperContent
13 | StringContent
14 | EmptyContent
15 | SafeStringContent
16 | FragmentContent
17 | NodeContent
18 | OtherContent;