11// Constant.
2- import {
3- TESTING_BIGINT ,
4- TESTING_BIGINT_CONSTRUCTOR ,
5- } from './big-int.const' ;
2+ import { TESTING_BIGINT } from './big-int.const' ;
63import { TestingClass } from './class.const' ;
74import {
85 TESTING_FALSE ,
@@ -24,8 +21,12 @@ import {
2421import { TESTING_UNDEFINED } from './undefined.const' ;
2522import { TESTING_NOT_DEFINED } from '../variable/not-defined.variable' ;
2623// Interface.
27- import { TestingObjectOne } from '../../interface' ;
28- import { TESTING_FUNCTION , TESTING_FUNCTION_CONSTRUCTOR , TESTING_FUNCTION_CONSTRUCTOR_PERSON } from './function.const' ;
24+ import { TestingObject } from '../../interface/object.interface' ;
25+ import {
26+ TESTING_FUNCTION ,
27+ TESTING_FUNCTION_CONSTRUCTOR ,
28+ TESTING_FUNCTION_CONSTRUCTOR_PERSON ,
29+ } from './function.const' ;
2930import { TESTING_SYMBOL_NUMBER , TESTING_SYMBOL_STRING } from './symbol.const' ;
3031/**
3132 * An `Array` of `bigint`.
@@ -36,7 +37,7 @@ import { TESTING_SYMBOL_NUMBER, TESTING_SYMBOL_STRING } from './symbol.const';
3637 */
3738export const TESTING_ARRAY_BIGINT = [
3839 TESTING_BIGINT ,
39- TESTING_BIGINT_CONSTRUCTOR ,
40+ TESTING_BIGINT ,
4041 9007199254740991n ,
4142] ;
4243
@@ -64,10 +65,7 @@ export const TESTING_ARRAY_BOOLEAN = [
6465 * typeOf(): "array"
6566 * typeof: "object"
6667 */
67- export const TESTING_ARRAY_CLASS = [
68- new TestingClass ( ) ,
69- new TestingClass ( ) ,
70- ] ;
68+ export const TESTING_ARRAY_CLASS = [ new TestingClass ( ) , new TestingClass ( ) ] ;
7169
7270/**
7371 * An `Array` of `function`.
@@ -127,7 +125,7 @@ export const TESTING_ARRAY_NUMBER = [
127125 * typeOf(): "array"
128126 * typeof: "object"
129127 */
130- export const TESTING_ARRAY_OBJECT_ONE : Array < TestingObjectOne > = [
128+ export const TESTING_ARRAY_OBJECT_ONE : Array < TestingObject > = [
131129 { [ TESTING_NUMBER ] : 'my number' , x : 3000 } ,
132130 { [ TESTING_NUMBER ] : 'my number' , x : 1 } ,
133131] ;
0 commit comments