@imbricate/core 3.25.1 → 3.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/action.d.ts +4 -3
- package/package.json +2 -2
- package/static-manager/base-class/full-feature-blob.d.ts +13 -0
- package/static-manager/base-class/full-feature-blob.js +24 -0
- package/static-manager/base-class/full-feature.d.ts +3 -2
- package/static-manager/base-class/full-feature.js +1 -0
- package/static-manager/base-class/readonly-blob.d.ts +14 -0
- package/static-manager/base-class/readonly-blob.js +23 -0
- package/static-manager/base-class/readonly.js +1 -0
- package/static-manager/export.d.ts +2 -0
- package/static-manager/export.js +2 -0
- package/static-manager/feature.d.ts +2 -1
- package/static-manager/feature.js +1 -0
- package/static-manager/outcome.d.ts +8 -0
- package/static-manager/outcome.js +9 -1
- package/static-manager/static-manager.d.ts +18 -2
- package/text-manager/text-manager.d.ts +8 -1
package/common/action.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @namespace Common
|
|
4
4
|
* @description Action
|
|
5
5
|
*/
|
|
6
|
-
import { IETF_LOCALE } from "@sudoo/locale";
|
|
6
|
+
import type { IETF_LOCALE } from "@sudoo/locale";
|
|
7
7
|
import { CommonActionOutcomeSymbol, CommonOutcomeSymbol } from "./outcome";
|
|
8
8
|
export declare enum IMBRICATE_ORIGIN_ACTION_PARAMETER_TYPE {
|
|
9
9
|
STRING = "STRING"
|
|
@@ -26,8 +26,9 @@ export declare enum IMBRICATE_ORIGIN_ACTION_APPEARANCE {
|
|
|
26
26
|
}
|
|
27
27
|
export type ImbricateOriginAction = {
|
|
28
28
|
readonly actionIdentifier: string;
|
|
29
|
-
readonly
|
|
30
|
-
readonly
|
|
29
|
+
readonly defaultLocale: IETF_LOCALE;
|
|
30
|
+
readonly actionName: Partial<Record<IETF_LOCALE, string>>;
|
|
31
|
+
readonly actionDescription: Partial<Record<IETF_LOCALE, string>>;
|
|
31
32
|
readonly parameters: ImbricateOriginActionParameter[];
|
|
32
33
|
readonly appearance?: IMBRICATE_ORIGIN_ACTION_APPEARANCE;
|
|
33
34
|
readonly disabled?: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imbricate/core",
|
|
3
3
|
"main": "index.js",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.27.0",
|
|
5
5
|
"description": "Imbricate Core, Notebook for Engineers",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"url": "https://github.com/Imbricate/Imbricate/issues"
|
|
19
19
|
},
|
|
20
20
|
"homepage": "https://imbricate.io",
|
|
21
|
-
"
|
|
21
|
+
"optionalDependencies": {
|
|
22
22
|
"@sudoo/locale": "^2.0.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @author WMXPY
|
|
3
|
+
* @namespace StaticManager
|
|
4
|
+
* @description Full Feature Blob
|
|
5
|
+
*/
|
|
6
|
+
import { IMBRICATE_STATIC_MANAGER_FEATURE } from "../feature";
|
|
7
|
+
import { ImbricateStaticManagerGetStaticUriOutcome } from "../outcome";
|
|
8
|
+
import { IImbricateStaticManager } from "../static-manager";
|
|
9
|
+
import { ImbricateStaticManagerFullFeatureBase } from "./full-feature";
|
|
10
|
+
export declare abstract class ImbricateStaticManagerFullFeatureBlobBase extends ImbricateStaticManagerFullFeatureBase implements IImbricateStaticManager {
|
|
11
|
+
readonly supportedFeatures: IMBRICATE_STATIC_MANAGER_FEATURE[];
|
|
12
|
+
getStaticUri(_staticUniqueIdentifier: string): PromiseLike<ImbricateStaticManagerGetStaticUriOutcome>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @author WMXPY
|
|
4
|
+
* @namespace StaticManager
|
|
5
|
+
* @description Full Feature Blob
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.ImbricateStaticManagerFullFeatureBlobBase = void 0;
|
|
9
|
+
const feature_not_supported_1 = require("../../error/static-manager/feature-not-supported");
|
|
10
|
+
const feature_1 = require("../feature");
|
|
11
|
+
const full_feature_1 = require("./full-feature");
|
|
12
|
+
class ImbricateStaticManagerFullFeatureBlobBase extends full_feature_1.ImbricateStaticManagerFullFeatureBase {
|
|
13
|
+
constructor() {
|
|
14
|
+
super(...arguments);
|
|
15
|
+
this.supportedFeatures = [
|
|
16
|
+
feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_GET_STATIC,
|
|
17
|
+
feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_CREATE_STATIC,
|
|
18
|
+
];
|
|
19
|
+
}
|
|
20
|
+
getStaticUri(_staticUniqueIdentifier) {
|
|
21
|
+
throw feature_not_supported_1.ImbricateStaticManagerFeatureNotSupportedError.withFeature(feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_GET_STATIC_URI);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
exports.ImbricateStaticManagerFullFeatureBlobBase = ImbricateStaticManagerFullFeatureBlobBase;
|
|
@@ -5,10 +5,11 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { IMBRICATE_STATIC_MIME_TYPE, ImbricateStaticAuditOptions } from "../../static/definition";
|
|
7
7
|
import { IMBRICATE_STATIC_MANAGER_FEATURE } from "../feature";
|
|
8
|
-
import { ImbricateStaticManagerCreateStaticOutcome, ImbricateStaticManagerGetStaticOutcome } from "../outcome";
|
|
8
|
+
import { ImbricateStaticManagerCreateStaticOutcome, ImbricateStaticManagerGetStaticOutcome, ImbricateStaticManagerGetStaticUriOutcome } from "../outcome";
|
|
9
9
|
import { IImbricateStaticManager } from "../static-manager";
|
|
10
10
|
export declare abstract class ImbricateStaticManagerFullFeatureBase implements IImbricateStaticManager {
|
|
11
11
|
readonly supportedFeatures: IMBRICATE_STATIC_MANAGER_FEATURE[];
|
|
12
|
-
abstract getStatic(
|
|
12
|
+
abstract getStatic(staticUniqueIdentifier: string): PromiseLike<ImbricateStaticManagerGetStaticOutcome>;
|
|
13
13
|
abstract createInBase64(content: string, mimeType: IMBRICATE_STATIC_MIME_TYPE, auditOptions?: ImbricateStaticAuditOptions): PromiseLike<ImbricateStaticManagerCreateStaticOutcome>;
|
|
14
|
+
abstract getStaticUri(staticUniqueIdentifier: string): PromiseLike<ImbricateStaticManagerGetStaticUriOutcome>;
|
|
14
15
|
}
|
|
@@ -12,6 +12,7 @@ class ImbricateStaticManagerFullFeatureBase {
|
|
|
12
12
|
this.supportedFeatures = [
|
|
13
13
|
feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_GET_STATIC,
|
|
14
14
|
feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_CREATE_STATIC,
|
|
15
|
+
feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_GET_STATIC_URI,
|
|
15
16
|
];
|
|
16
17
|
}
|
|
17
18
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @author WMXPY
|
|
3
|
+
* @namespace StaticManager
|
|
4
|
+
* @description Readonly Blob
|
|
5
|
+
*/
|
|
6
|
+
import { IMBRICATE_STATIC_MIME_TYPE, ImbricateStaticAuditOptions } from "../../static/definition";
|
|
7
|
+
import { IMBRICATE_STATIC_MANAGER_FEATURE } from "../feature";
|
|
8
|
+
import { ImbricateStaticManagerCreateStaticOutcome } from "../outcome";
|
|
9
|
+
import { IImbricateStaticManager } from "../static-manager";
|
|
10
|
+
import { ImbricateStaticManagerFullFeatureBlobBase } from "./full-feature-blob";
|
|
11
|
+
export declare abstract class ImbricateStaticManagerReadonlyBlobBase extends ImbricateStaticManagerFullFeatureBlobBase implements IImbricateStaticManager {
|
|
12
|
+
readonly supportedFeatures: IMBRICATE_STATIC_MANAGER_FEATURE[];
|
|
13
|
+
createInBase64(_content: string, _mimeType: IMBRICATE_STATIC_MIME_TYPE, _auditOptions?: ImbricateStaticAuditOptions): PromiseLike<ImbricateStaticManagerCreateStaticOutcome>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @author WMXPY
|
|
4
|
+
* @namespace StaticManager
|
|
5
|
+
* @description Readonly Blob
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.ImbricateStaticManagerReadonlyBlobBase = void 0;
|
|
9
|
+
const feature_not_supported_1 = require("../../error/static-manager/feature-not-supported");
|
|
10
|
+
const feature_1 = require("../feature");
|
|
11
|
+
const full_feature_blob_1 = require("./full-feature-blob");
|
|
12
|
+
class ImbricateStaticManagerReadonlyBlobBase extends full_feature_blob_1.ImbricateStaticManagerFullFeatureBlobBase {
|
|
13
|
+
constructor() {
|
|
14
|
+
super(...arguments);
|
|
15
|
+
this.supportedFeatures = [
|
|
16
|
+
feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_GET_STATIC,
|
|
17
|
+
];
|
|
18
|
+
}
|
|
19
|
+
createInBase64(_content, _mimeType, _auditOptions) {
|
|
20
|
+
throw feature_not_supported_1.ImbricateStaticManagerFeatureNotSupportedError.withFeature(feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_CREATE_STATIC);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.ImbricateStaticManagerReadonlyBlobBase = ImbricateStaticManagerReadonlyBlobBase;
|
|
@@ -14,6 +14,7 @@ class ImbricateStaticManagerReadonlyBase extends full_feature_1.ImbricateStaticM
|
|
|
14
14
|
super(...arguments);
|
|
15
15
|
this.supportedFeatures = [
|
|
16
16
|
feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_GET_STATIC,
|
|
17
|
+
feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_GET_STATIC_URI,
|
|
17
18
|
];
|
|
18
19
|
}
|
|
19
20
|
createInBase64(_content, _mimeType, _auditOptions) {
|
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
* @description Export
|
|
5
5
|
*/
|
|
6
6
|
export * from "./base-class/full-feature";
|
|
7
|
+
export * from "./base-class/full-feature-blob";
|
|
7
8
|
export * from "./base-class/readonly";
|
|
9
|
+
export * from "./base-class/readonly-blob";
|
|
8
10
|
export * from "./feature";
|
|
9
11
|
export * from "./outcome";
|
|
10
12
|
export * from "./static-manager";
|
package/static-manager/export.js
CHANGED
|
@@ -20,7 +20,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
20
20
|
};
|
|
21
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
22
|
__exportStar(require("./base-class/full-feature"), exports);
|
|
23
|
+
__exportStar(require("./base-class/full-feature-blob"), exports);
|
|
23
24
|
__exportStar(require("./base-class/readonly"), exports);
|
|
25
|
+
__exportStar(require("./base-class/readonly-blob"), exports);
|
|
24
26
|
__exportStar(require("./feature"), exports);
|
|
25
27
|
__exportStar(require("./outcome"), exports);
|
|
26
28
|
__exportStar(require("./static-manager"), exports);
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export declare enum IMBRICATE_STATIC_MANAGER_FEATURE {
|
|
7
7
|
STATIC_MANAGER_GET_STATIC = "STATIC_MANAGER_GET_STATIC",
|
|
8
|
-
STATIC_MANAGER_CREATE_STATIC = "STATIC_MANAGER_CREATE_STATIC"
|
|
8
|
+
STATIC_MANAGER_CREATE_STATIC = "STATIC_MANAGER_CREATE_STATIC",
|
|
9
|
+
STATIC_MANAGER_GET_STATIC_URI = "STATIC_MANAGER_GET_STATIC_URI"
|
|
9
10
|
}
|
|
10
11
|
export declare const checkImbricateStaticManagerFeatureSupported: (features: IMBRICATE_STATIC_MANAGER_FEATURE[], feature: IMBRICATE_STATIC_MANAGER_FEATURE) => boolean;
|
|
@@ -10,6 +10,7 @@ var IMBRICATE_STATIC_MANAGER_FEATURE;
|
|
|
10
10
|
(function (IMBRICATE_STATIC_MANAGER_FEATURE) {
|
|
11
11
|
IMBRICATE_STATIC_MANAGER_FEATURE["STATIC_MANAGER_GET_STATIC"] = "STATIC_MANAGER_GET_STATIC";
|
|
12
12
|
IMBRICATE_STATIC_MANAGER_FEATURE["STATIC_MANAGER_CREATE_STATIC"] = "STATIC_MANAGER_CREATE_STATIC";
|
|
13
|
+
IMBRICATE_STATIC_MANAGER_FEATURE["STATIC_MANAGER_GET_STATIC_URI"] = "STATIC_MANAGER_GET_STATIC_URI";
|
|
13
14
|
})(IMBRICATE_STATIC_MANAGER_FEATURE || (exports.IMBRICATE_STATIC_MANAGER_FEATURE = IMBRICATE_STATIC_MANAGER_FEATURE = {}));
|
|
14
15
|
const checkImbricateStaticManagerFeatureSupported = (features, feature) => {
|
|
15
16
|
return features.includes(feature);
|
|
@@ -21,3 +21,11 @@ export declare const rebuildImbricateStaticManagerCreateStaticSymbol: (symbolDes
|
|
|
21
21
|
export type ImbricateStaticManagerCreateStaticOutcome = {
|
|
22
22
|
readonly static: IImbricateStatic;
|
|
23
23
|
} | CommonOutcomeSymbol | ImbricateStaticManagerCreateStaticOutcomeSymbol;
|
|
24
|
+
export declare const S_StaticManager_GetStaticUri_NotFound: unique symbol;
|
|
25
|
+
export declare const S_StaticManager_GetStaticUri_Unknown: unique symbol;
|
|
26
|
+
export type ImbricateStaticManagerGetStaticUriOutcomeSymbol = typeof S_StaticManager_GetStaticUri_NotFound | typeof S_StaticManager_GetStaticUri_Unknown;
|
|
27
|
+
export declare const ImbricateStaticManagerGetStaticUriOutcomeSymbolList: ImbricateStaticManagerGetStaticUriOutcomeSymbol[];
|
|
28
|
+
export declare const rebuildImbricateStaticManagerGetStaticUri: (symbolDescription: string) => CommonOutcomeSymbol | ImbricateStaticManagerGetStaticUriOutcomeSymbol;
|
|
29
|
+
export type ImbricateStaticManagerGetStaticUriOutcome = {
|
|
30
|
+
readonly uri: string;
|
|
31
|
+
} | CommonOutcomeSymbol | ImbricateStaticManagerGetStaticUriOutcomeSymbol;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @description Outcome
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.rebuildImbricateStaticManagerCreateStaticSymbol = exports.ImbricateStaticManagerCreateStaticOutcomeSymbolList = exports.S_StaticManager_CreateStatic_Unknown = exports.S_StaticManager_CreateStatic_IdentifierDuplicated = exports.rebuildImbricateStaticManagerGetStaticSymbol = exports.ImbricateStaticManagerGetStaticOutcomeSymbolList = exports.S_StaticManager_GetStatic_Unknown = exports.S_StaticManager_GetStatic_NotFound = void 0;
|
|
8
|
+
exports.rebuildImbricateStaticManagerGetStaticUri = exports.ImbricateStaticManagerGetStaticUriOutcomeSymbolList = exports.S_StaticManager_GetStaticUri_Unknown = exports.S_StaticManager_GetStaticUri_NotFound = exports.rebuildImbricateStaticManagerCreateStaticSymbol = exports.ImbricateStaticManagerCreateStaticOutcomeSymbolList = exports.S_StaticManager_CreateStatic_Unknown = exports.S_StaticManager_CreateStatic_IdentifierDuplicated = exports.rebuildImbricateStaticManagerGetStaticSymbol = exports.ImbricateStaticManagerGetStaticOutcomeSymbolList = exports.S_StaticManager_GetStatic_Unknown = exports.S_StaticManager_GetStatic_NotFound = void 0;
|
|
9
9
|
const rebuild_symbol_1 = require("../util/rebuild-symbol");
|
|
10
10
|
// Manager Get Static
|
|
11
11
|
exports.S_StaticManager_GetStatic_NotFound = Symbol("StaticManager_GetStatic_NotFound");
|
|
@@ -23,3 +23,11 @@ exports.ImbricateStaticManagerCreateStaticOutcomeSymbolList = [
|
|
|
23
23
|
exports.S_StaticManager_CreateStatic_Unknown,
|
|
24
24
|
];
|
|
25
25
|
exports.rebuildImbricateStaticManagerCreateStaticSymbol = (0, rebuild_symbol_1.createRebuildImbricateSymbolFunction)(exports.ImbricateStaticManagerCreateStaticOutcomeSymbolList, exports.S_StaticManager_CreateStatic_Unknown);
|
|
26
|
+
// Manager Get Static URI
|
|
27
|
+
exports.S_StaticManager_GetStaticUri_NotFound = Symbol("StaticManager_GetStaticUri_NotFound");
|
|
28
|
+
exports.S_StaticManager_GetStaticUri_Unknown = Symbol("StaticManager_GetStaticUri_Unknown");
|
|
29
|
+
exports.ImbricateStaticManagerGetStaticUriOutcomeSymbolList = [
|
|
30
|
+
exports.S_StaticManager_GetStaticUri_NotFound,
|
|
31
|
+
exports.S_StaticManager_GetStaticUri_Unknown,
|
|
32
|
+
];
|
|
33
|
+
exports.rebuildImbricateStaticManagerGetStaticUri = (0, rebuild_symbol_1.createRebuildImbricateSymbolFunction)(exports.ImbricateStaticManagerGetStaticUriOutcomeSymbolList, exports.S_StaticManager_GetStaticUri_Unknown);
|
|
@@ -4,15 +4,22 @@
|
|
|
4
4
|
* @description Static Manager
|
|
5
5
|
*/
|
|
6
6
|
import { IMBRICATE_STATIC_MIME_TYPE, ImbricateStaticAuditOptions } from "../static/definition";
|
|
7
|
-
import {
|
|
7
|
+
import { IMBRICATE_STATIC_MANAGER_FEATURE } from "./feature";
|
|
8
|
+
import { ImbricateStaticManagerCreateStaticOutcome, ImbricateStaticManagerGetStaticOutcome, ImbricateStaticManagerGetStaticUriOutcome } from "./outcome";
|
|
8
9
|
export interface IImbricateStaticManager {
|
|
10
|
+
/**
|
|
11
|
+
* Supported features of the static manager
|
|
12
|
+
*/
|
|
13
|
+
readonly supportedFeatures: IMBRICATE_STATIC_MANAGER_FEATURE[];
|
|
9
14
|
/**
|
|
10
15
|
* Get the static object from the origin
|
|
11
16
|
*
|
|
17
|
+
* @param staticUniqueIdentifier unique identifier of the static object
|
|
18
|
+
*
|
|
12
19
|
* @returns a promise of the static object, null if not found
|
|
13
20
|
* Symbol: S_StaticManager_GetStatic_NotFound - if the static object is not found
|
|
14
21
|
*/
|
|
15
|
-
getStatic(
|
|
22
|
+
getStatic(staticUniqueIdentifier: string): PromiseLike<ImbricateStaticManagerGetStaticOutcome>;
|
|
16
23
|
/**
|
|
17
24
|
* Create a new static object in the origin, encoded in base64
|
|
18
25
|
* Static object is immutable, once created, it cannot be changed
|
|
@@ -26,4 +33,13 @@ export interface IImbricateStaticManager {
|
|
|
26
33
|
* Symbol: S_StaticManager_CreateStatic_IdentifierDuplicated - if the identifier is duplicated
|
|
27
34
|
*/
|
|
28
35
|
createInBase64(content: string, mimeType: IMBRICATE_STATIC_MIME_TYPE, auditOptions?: ImbricateStaticAuditOptions): PromiseLike<ImbricateStaticManagerCreateStaticOutcome>;
|
|
36
|
+
/**
|
|
37
|
+
* Get the Uri of the static object
|
|
38
|
+
*
|
|
39
|
+
* @param staticUniqueIdentifier unique identifier of the static object
|
|
40
|
+
*
|
|
41
|
+
* @returns a promise of the Uri of the static object
|
|
42
|
+
* Symbol: S_StaticManager_GetStaticUri_NotFound - if the static object is not found
|
|
43
|
+
*/
|
|
44
|
+
getStaticUri(staticUniqueIdentifier: string): PromiseLike<ImbricateStaticManagerGetStaticUriOutcome>;
|
|
29
45
|
}
|
|
@@ -4,15 +4,22 @@
|
|
|
4
4
|
* @description Text Manager
|
|
5
5
|
*/
|
|
6
6
|
import { ImbricateTextAuditOptions } from "../text/definition";
|
|
7
|
+
import { IMBRICATE_TEXT_MANAGER_FEATURE } from "./feature";
|
|
7
8
|
import { ImbricateTextManagerCreateTextOutcome, ImbricateTextManagerGetTextOutcome } from "./outcome";
|
|
8
9
|
export interface IImbricateTextManager {
|
|
10
|
+
/**
|
|
11
|
+
* Supported features of the text manager
|
|
12
|
+
*/
|
|
13
|
+
readonly supportedFeatures: IMBRICATE_TEXT_MANAGER_FEATURE[];
|
|
9
14
|
/**
|
|
10
15
|
* Get the text object from the origin
|
|
11
16
|
*
|
|
17
|
+
* @param uniqueIdentifier unique identifier of the text
|
|
18
|
+
*
|
|
12
19
|
* @returns a promise of the text object, null if not found
|
|
13
20
|
* Symbol: S_TextManager_GetText_NotFound - if the text is not found
|
|
14
21
|
*/
|
|
15
|
-
getText(
|
|
22
|
+
getText(textUniqueIdentifier: string): PromiseLike<ImbricateTextManagerGetTextOutcome>;
|
|
16
23
|
/**
|
|
17
24
|
* Create a new text object in the origin
|
|
18
25
|
* Text object is immutable, once created, it cannot be changed
|