Invoice Ninja Node and Trigger

This commit is contained in:
Ricardo Espinoza
2020-03-04 12:05:54 -05:00
parent dc10a5cfd4
commit 77148fe352
20 changed files with 5328 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
export interface ITask {
client_id?: number;
custom_value1?: string;
custom_value2?: string;
description?: string;
project?: number;
time_log?: string;
}