Skip to content
This repository has been archived by the owner on Mar 5, 2021. It is now read-only.

Commit

Permalink
plugins: Update schema types
Browse files Browse the repository at this point in the history
  • Loading branch information
elisee committed Jan 13, 2016
1 parent f5b07a7 commit 142e707
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/default/blob/data/BlobAsset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const defaultExtensions: { [mediaType: string]: string; } = {
};

export default class BlobAsset extends SupCore.Data.Base.Asset {
static schema: SupCore.Data.Base.Schema = {
static schema: SupCore.Data.Schema = {
mediaType: { type: "string" },
buffer: { type: "buffer" }
};
Expand Down
2 changes: 1 addition & 1 deletion plugins/default/lua/data/LuaAsset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface LuaAssetPub {
}

export default class LuaAsset extends SupCore.Data.Base.Asset {
static schema: SupCore.Data.Base.Schema = {
static schema: SupCore.Data.Schema = {
text: { type: "string" },
draft: { type: "string" },
revisionId: { type: "integer" }
Expand Down

0 comments on commit 142e707

Please sign in to comment.