UNPKG

@casual-simulation/aux-common

Version:
10 lines 1.23 kB
import { Vector2, Vector3 } from '../../math'; import { Rotation } from '../../math/Rotation'; export declare const possibleTagNameCases: (readonly ["\"\"", ""] | readonly ["0", "0"] | readonly ["\"a\"", "a"] | readonly ["1", "1"] | readonly ["-10", "-10"] | readonly ["\"1\"", "1"] | readonly ["\".5\"", ".5"] | readonly [".5", "0.5"] | readonly ["false", "false"] | readonly ["\"false\"", "false"] | readonly ["true", "true"] | readonly ["\"true\"", "true"])[]; export declare const possibleTagValueCases: (readonly [any, any])[]; export declare function booleanTagValueTests(defaultValue: boolean, testFunc: (given: any, expected: boolean) => void): void; export declare function numericalTagValueTests(defaultValue: number, testFunc: (given: any, expected: number) => void): void; export declare function stringTagValueTests(defaultValue: string, testFunc: (given: any, expected: string) => void): void; export declare function vectorTagValueTests(defaultValue: Vector2 | Vector3, testFunc: (given: any, expected: Vector2 | Vector3) => void): void; export declare function rotationTagValueTests(defaultValue: Rotation, testFunc: (given: any, expected: Rotation) => void): void; //# sourceMappingURL=BotTestHelpers.d.ts.map