mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
7 lines
171 B
TypeScript
7 lines
171 B
TypeScript
export declare class Person {
|
|
constructor(name: string, age: number, salary: number);
|
|
public name: string;
|
|
public age: number;
|
|
public salary: string;
|
|
}
|