UNPKG

homm3-parsers

Version:

Collection of binary parsers able to parse various file formats related to Heroes of Might and Magic III

3 lines (2 loc) 242 B
export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; export declare type FlaggedProp<FlagName extends string, ValueName extends string, T> = (Record<FlagName, true> & Record<ValueName, T>) | Record<FlagName, false>;