@periskope/types 0.2.0 → 0.3.0
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.
- package/package.json +1 -1
- package/types.ts +2 -2
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Merge, OverrideProperties } from 'type-fest';
|
|
2
2
|
import { Chat, MessageTypes } from 'whatsapp-web.js';
|
|
3
|
-
import { Database as DatabaseGenerated, Tables } from './supabase.types';
|
|
4
|
-
export * from './supabase.types';
|
|
3
|
+
import { Database as DatabaseGenerated, Tables } from './supabase.types.ts';
|
|
4
|
+
export * from './supabase.types.ts';
|
|
5
5
|
|
|
6
6
|
// Override the type for a specific column in a view:
|
|
7
7
|
export type Database = OverrideProperties<DatabaseGenerated, {}>;
|