/** * A type guard function which validates a specific type, with an optional context * that can be used to shape the validation. * @public */ export type TypeGuardWithContext = (from: unknown, context?: TC) => from is T; //# sourceMappingURL=common.d.ts.map