UNPKG

242 BJavaScriptView Raw
1// @flow
2
3export type TokenReplacements = {
4 [string]: {
5 [string]: Array<string>
6 }
7};
8export type TokenReplacementsTree = Map<string, Map<number, Map<string, string>>>;
9export type Point = Array<{
10 token: string,
11 value: string,
12}>;