@workmai/utils
v1.0.4
Published
Demonstration NPM package intended to illustrate packaging a TypeScript ESM type module, for use within another TypeScript application.
Downloads
1
Readme
utils
Demonstration NPM package intended to illustrate packaging a TypeScript ESM type module, for use within another TypeScript applicaiton.
Contains 1 exported interface (Book
), and one exported method (scramble
).
Book
interface Book {
isbn: string
title: string
author: string
literaryForm: LiteraryForm
}
Scramble
const scramble = (input: string) : string