image-wife
Version:
A library for compile-time and runtime procedural modification of photographic images.
19 lines (17 loc) • 502 B
text/typescript
import {
MetaRollHalfChance,
MetaRollQuarterChance,
MetaRollTenthChance,
MetaRollFiftiethChance,
MetaRollHundredthChance,
MetaRollDoResetEachTick,
MetaRollDontResetEachTick,
} from './MetaRolls';
export type MetaRollType =
typeof MetaRollHalfChance |
typeof MetaRollQuarterChance |
typeof MetaRollTenthChance |
typeof MetaRollFiftiethChance |
typeof MetaRollHundredthChance |
typeof MetaRollDoResetEachTick |
typeof MetaRollDontResetEachTick;