1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Fix types

This commit is contained in:
Laurent Cozic
2021-05-10 11:32:31 +02:00
parent 9c20d5947d
commit 1e27a4fcd2
2 changed files with 3 additions and 3 deletions

View File

@@ -119,7 +119,7 @@ CREATE TABLE version (
INSERT INTO version (version) VALUES (1);
`;
interface TableField {
export interface TableField {
name: string;
type: number;
default: any;