6 lines
254 B
TypeScript
6 lines
254 B
TypeScript
export declare enum Phase {
|
|
ProspectiveRender = "the prospective render",
|
|
SegmentCollection = "segment collection"
|
|
}
|
|
export declare function printDebugThrownValueForProspectiveRender(thrownValue: unknown, route: string, phase: Phase): undefined;
|