/** * utils.ts 内容太多了 * 懒得移动 * 直接新开一个 * * @filename packages/utils/src/utils/newUtils.ts * @author tujiawei * @date 2024-03-28 11:28:32 */ export declare const isPowerOfFour: (value: number) => boolean; /** * >= value 的 2 的阶乘 */ export declare const nextPowerOfTwo: (value: number) => number; export declare const cartesianProduct: (a: T[], b: T[]) => T[][][];