7 lines
261 B
TypeScript
7 lines
261 B
TypeScript
|
/// <reference path="../../includes.d.ts" />
|
||
|
/// <reference path="systemPlugin.d.ts" />
|
||
|
declare module System {
|
||
|
function classifyCity(regionalismInfo: Array<any>): any[];
|
||
|
function classifyCountry(regionalismInfo: Array<any>, cityName: string): any[];
|
||
|
}
|