File size: 206 Bytes
e66f26b
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
export interface PwVendorInterface {
    id: number;
    pw_id: bigint;
    name: string;
    type?: string | null;
    default_bill_split?: bigint | null;
    created_at?: Date;
    updated_at?: Date;
  }