irapilguy

Untitled

Dec 15th, 2021
1,423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export interface DolosOptions {
  2.   k: number;
  3.   windowSize: number;
  4.   language: string;
  5. }
  6. export class DefaultOptions implements Options{
  7.   public static defaultLanguage = "c";
  8.   public static defaultKgramLength = 23;
  9.   public static defaultKgramsInWindow = 17;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment