6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
export type PayPeriodLabel = {
|
|
start_date: string;
|
|
end_date: string;
|
|
};
|
|
|
|
export type UpsertAction = 'created' | 'updated' | 'deleted'; |