9 lines
173 B
TypeScript
9 lines
173 B
TypeScript
/** 通用类型 */
|
|
declare namespace Common {
|
|
/**
|
|
* 策略模式
|
|
* [状态, 为true时执行的回调函数]
|
|
*/
|
|
type StrategyAction = [boolean, () => void];
|
|
}
|