UNPKG

xcom2charpool

Version:

Library for reading, manipulating, and managing XCOM 2 character pool binary files, supporting both browser and Node.js environments.

6 lines (5 loc) 166 B
import { Codec } from './Codec'; export interface TypeCodec<T = unknown> extends Codec<T> { readonly type: string; isSupported(value: unknown): value is T; }