UNPKG

crypto-ts

Version:

Typescript library of crypto standards.

6 lines (5 loc) 186 B
import { CipherParams } from '../lib/CipherParams'; export interface Formatter { stringify: (cipherParams: CipherParams) => string; parse: (paramsStr: string) => CipherParams; }