@angular-package/testing
Version:
Jasmine unit testing wrapper with additional custom testing features.
24 lines (23 loc) • 800 B
TypeScript
import { TESTING_STRING } from './string.const';
import { TESTING_NUMBER } from './number.const';
import { TESTING_SYMBOL_STRING, TESTING_SYMBOL_NUMBER } from './symbol.const';
import { TestingPersonShape } from '../../interface/person-shape.interface';
export declare class TestingClass {
1030405027: string;
5: number;
firstName: string;
surname: string;
age: number;
city: string;
get [TESTING_NUMBER](): number;
get [TESTING_STRING](): string;
get [TESTING_SYMBOL_NUMBER](): number;
get [TESTING_SYMBOL_STRING](): string;
}
export declare const TESTING_CLASS: TestingClass;
export declare class TestingPerson implements TestingPersonShape {
firstName: string;
surname: string;
age: number;
}
export declare const TESTING_PERSON: TestingPerson;