import { TYPE } from '../symbols/type.js'; export interface StaticError { [TYPE]: 'StaticError'; } /** * @example * * ```ts * type MyGeneric = T extends string ? ... : Throw<"MyGeneric: T should be string" & {Got: T}> * ``` */ export type Throw = [StaticError & message][0]; //# sourceMappingURL=StaticError.d.ts.map