UNPKG

owospeak

Version:
14 lines (13 loc) 441 B
import face from "./face"; interface Options { /** Whether or not to add a chance to stutter */ stutter: boolean; /** Whether or not to add a tilde at the end of every message */ tilde: boolean; } /** * @param {message} message - The message to convert * @param {Object} options - Options for converting the message */ export declare function convert(message: string, options?: Partial<Options>): string; export { face };