clickgo 5.9.0 → 5.10.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/dist/app/demo.cga +0 -0
- package/dist/clickgo.d.ts +4 -0
- package/dist/control/box.cgc +0 -0
- package/dist/control/common.cgc +0 -0
- package/dist/control/fabric.cgc +0 -0
- package/dist/control/waterfall.cgc +0 -0
- package/dist/index.js +1 -1
- package/dist/lib/core.d.ts +2 -0
- package/doc/clickgo-rag.md +277 -179
- package/package.json +2 -1
package/dist/lib/core.d.ts
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
+
import fabric from 'fabric';
|
|
16
17
|
import * as mpegts from 'mpegts.js';
|
|
17
18
|
import * as clickgo from '../clickgo';
|
|
18
19
|
import * as lForm from './form';
|
|
@@ -155,6 +156,7 @@ export declare function regModule(current: TCurrent, name: string, opt: {
|
|
|
155
156
|
export declare function checkModule(name: string): boolean;
|
|
156
157
|
export declare function getModule(name: 'tums-player'): Promise<ITumsPlayer | null>;
|
|
157
158
|
export declare function getModule(name: 'mpegts'): Promise<typeof mpegts.default | null>;
|
|
159
|
+
export declare function getModule(name: 'fabric'): Promise<typeof fabric | null>;
|
|
158
160
|
export declare function getModule(name: string): Promise<any | null>;
|
|
159
161
|
/**
|
|
160
162
|
* --- 加载模块,返回 true / false ---
|