mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-10 02:40:26 +08:00
20 lines
374 B
TypeScript
20 lines
374 B
TypeScript
// @ts-check
|
|
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
|
// This file is automatically generated. DO NOT EDIT
|
|
|
|
// Title is a title
|
|
export enum Title {
|
|
// Mister is a title
|
|
Mister = "Mr",
|
|
Miss = "Miss",
|
|
Ms = "Ms",
|
|
Mrs = "Mrs",
|
|
Dr = "Dr",
|
|
}
|
|
|
|
// Person represents a person
|
|
export interface Person {
|
|
title: Title;
|
|
name: string;
|
|
}
|