15 lines
285 B
TypeScript
15 lines
285 B
TypeScript
|
import { Option } from '../Option';
|
||
|
import { BaseOption } from './BaseOption';
|
||
|
|
||
|
export class StringOption extends BaseOption<string> {
|
||
|
private _config: Option;
|
||
|
|
||
|
public constructor (config: Option) {
|
||
|
this._config = config;
|
||
|
}
|
||
|
|
||
|
public async parse (): Promise<string> {
|
||
|
|
||
|
}
|
||
|
}
|