You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
442 B
TypeScript
20 lines
442 B
TypeScript
export interface Database {
|
|
public: {
|
|
Tables: {
|
|
notes: {
|
|
Row: {
|
|
id: number;
|
|
title: string;
|
|
description: string;
|
|
user_id: string;
|
|
created_at: string;
|
|
}; // The data expected to be returned from a "select" statement.
|
|
Insert: {}; // The data expected passed to an "insert" statement.
|
|
Update: {
|
|
description: string;
|
|
}; // The data expected passed to an "update" statement.
|
|
};
|
|
};
|
|
};
|
|
}
|