8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
![]() |
import { PatternOption } from './types';
|
||
|
export default class Model {
|
||
|
id: string;
|
||
|
config: PatternOption;
|
||
|
val: number;
|
||
|
constructor(config: PatternOption);
|
||
|
}
|