Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
gnlow committed Dec 25, 2023
1 parent 6a889de commit c2b31a8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/class/Object_.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Script } from "./Script.ts"

interface Picture_ {
export interface Picture {
id: string;
name: string;
dimension: {
Expand All @@ -14,19 +14,19 @@ interface Picture_ {
default: number;
};
imageType: string
}
export interface Picture extends Picture_ {
fileurl: string;
}
export interface Picture extends Picture_ {
filename: string;

fileurl?: string;
filename?: string;
}

export interface Sound {
id: string;
name: string;
fileurl: string;
duration: number;

fileurl?: string;
filename?: string;
ext?: string;
}

export interface Object_ {
Expand Down

0 comments on commit c2b31a8

Please sign in to comment.