@m1ny/types
v0.0.10
Published
> TODO: description
Readme
@m1ny/types
TODO: description
Install
pnpm add -D @m1ny/typesUsage
add in global.d.ts
/// <reference types="@m1ny/types" />
or add in tsconfig.json
{
"compilerOptions": {
"types": [
"@m1ny/types",
...
]
}
}
add in eslint.config.js
import types from '@m1ny/types'
/** @type {import('eslint').Linter.Config[]} */
export default [
...,
{
languageOptions: {
globals: {
...types.globals,
},
},
}
]
// TODO: DEMONSTRATE API