-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
因為缺乏index.d.ts的定義檔案,因此沒辦法在ts的專案中直接使用。
所以個人弄了一個Typescipt相關的定義檔按給大家參考,如果沒問題的話我再送PR。
declare module "twzipcode-data" {
export interface County {
id: string;
name: string;
}
export interface Zipcode {
id: string;
zipcode: number;
county: string;
city: string;
}
export interface TwZipcodeData {
counties: County[];
zipcodes: Zipcode[];
}
export default twzipcode = (locale?: string) => TwZipcodeData;
}apo1798
Metadata
Metadata
Assignees
Labels
No labels