-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added support for SceneGallery and SceneGalleryImage types
- Loading branch information
1 parent
918c591
commit 9cb76f5
Showing
7 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { SceneBase } from "./scene-base"; | ||
|
||
export class SceneGalleryImage extends SceneBase { | ||
static type(): "scenegalleryimage"; | ||
|
||
get attributes(): any; | ||
set overrideAttributes(attributes: any); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const PlattarBase = require("../interfaces/plattar-base.js"); | ||
|
||
class SceneGalleryImage extends PlattarBase { | ||
static type() { | ||
return "scenegalleryimage"; | ||
} | ||
} | ||
|
||
module.exports = SceneGalleryImage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { SceneBase } from "./scene-base"; | ||
|
||
export class SceneGallery extends SceneBase { | ||
static type(): "scenegallery"; | ||
|
||
get attributes(): any; | ||
set overrideAttributes(attributes: any); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const PlattarBase = require("../interfaces/plattar-base.js"); | ||
|
||
class SceneGallery extends PlattarBase { | ||
static type() { | ||
return "scenegallery"; | ||
} | ||
} | ||
|
||
module.exports = SceneGallery; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters