UNPKG

@entwurfhaus/vite-vanilla-ts-module

Version:

A starter vanilla-ts (extended) template that began with Vite 3.x, prepared for writing node utility libraries in typescript. This starter is meant to provide rapid node package development and publishing onto npm.

8 lines (7 loc) 160 B
/** * Provide a name, to say hello to. * * @param {string} name * @returns {string} Hello, Brian! */ export declare const hello: (name: string) => string;