Interface Type

interface Type {
    alphabet: string;
    decode: ((str: string) => string);
    encode: ((str: string) => string);
}

Implemented by

Properties

alphabet: string
decode: ((str: string) => string)
encode: ((str: string) => string)