6 lines
115 B
TypeScript
6 lines
115 B
TypeScript
|
export interface IMyInputAutoFill {
|
||
|
separator: string;
|
||
|
formatParts: Array<string>;
|
||
|
enabled: boolean;
|
||
|
}
|