@nomalism-com/types 0.29.64 → 0.29.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const Route = "dashboard";
|
|
2
2
|
export declare const UpperName = "Dashboard";
|
|
3
3
|
export declare const LowerName: string;
|
|
4
|
-
type IDashboardNames = "dia" | "mes" | "ano";
|
|
4
|
+
export type IDashboardNames = "dia" | "mes" | "ano";
|
|
5
5
|
export interface IData {
|
|
6
6
|
chave: number;
|
|
7
7
|
faturaRecibo: number;
|
|
@@ -20,4 +20,3 @@ export interface IFindDashboardByDate {
|
|
|
20
20
|
export interface IRepository {
|
|
21
21
|
findByDate(selector: IFindDashboardByDate): Promise<IDashboardResponse>;
|
|
22
22
|
}
|
|
23
|
-
export {};
|