UNPKG

mutoid

Version:

Reactive library for data fetching, caching, state management

9 lines (8 loc) 371 B
import * as t from 'io-ts'; import type { StatusCode } from '../statusCode'; export interface StatusCodeC extends t.Type<StatusCode, string | number, unknown> { } export declare const statusCodeT: StatusCodeC; export interface StatusCodeWithZeroC extends t.Type<StatusCode | 0, string | number, unknown> { } export declare const statusCodeWithZeroT: StatusCodeWithZeroC;