UNPKG

juapp-freelancer-service-client

Version:
24 lines (18 loc) 367 B
/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type Invoice = { id?: string; timesheet?: string; project?: string; number?: string; status?: Invoice.status; createdAt?: string; updatedAt?: string; } export namespace Invoice { export enum status { SENT = 'SENT', PAID = 'PAID', } }