9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import irregularPluralsJson = require('./irregular-plurals.json');
|
|
|
|
declare const irregularPlurals: ReadonlyMap<
|
|
keyof typeof irregularPluralsJson,
|
|
string
|
|
>;
|
|
|
|
export = irregularPlurals;
|