1.  
  2. export interface StringValidator {
  3. isAcceptable(s: string): boolean;
  4. }
  5.