mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-12 17:08:14 +00:00
chore: 修复 KeyType 定义错误
This commit is contained in:
parent
07d3a79845
commit
2ab953db61
@ -21,7 +21,6 @@
|
||||
"setup:skip-build": "./scripts/setup-skip-build.sh",
|
||||
"start": "./scripts/start.sh",
|
||||
"start:demo": "./scripts/start.sh @ali/lowcode-demo",
|
||||
"start:server": "./scripts/start-server.sh",
|
||||
"test": "lerna run test --stream",
|
||||
"test:snapshot": "lerna run test:snapshot",
|
||||
"watchdog:build": "node ./scripts/watchdog.js",
|
||||
|
||||
@ -3,7 +3,7 @@ import { ReactNode, ComponentType } from 'react';
|
||||
import { NpmInfo } from './npm';
|
||||
import { RegisterOptions } from 'power-di';
|
||||
|
||||
export type KeyType = new (...args: any[]) => any | symbol | string;
|
||||
export type KeyType = (new (...args: any[]) => any) | symbol | string;
|
||||
export type ClassType = new (...args: any[]) => any;
|
||||
export interface GetOptions {
|
||||
forceNew?: boolean;
|
||||
|
||||
@ -1,5 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# FIXME! do not run build
|
||||
lerna exec --scope @ali/lowcode-code-generator -- npm run build
|
||||
# lerna exec --scope @ali/lowcode-demo-server -- npm start
|
||||
Loading…
x
Reference in New Issue
Block a user