mirror of
https://github.com/danog/CodiceFiscaleJS.git
synced 2024-11-26 20:14:55 +01:00
17 lines
442 B
TypeScript
17 lines
442 B
TypeScript
export interface IComuneObject {
|
|
nome: string;
|
|
prov?: string;
|
|
cc?: string;
|
|
}
|
|
export declare class Comune {
|
|
nome: string;
|
|
prov: string;
|
|
cc: string;
|
|
readonly nomeNorm: string;
|
|
constructor(nome: string, prov?: string, cc?: string, check?: boolean);
|
|
static GetByName(name: string, prov?: string): Comune;
|
|
static GetByCC(cc: string): Comune;
|
|
private searchByName;
|
|
private searchByNameAndProvince;
|
|
}
|