File: index.d.ts

package info (click to toggle)
node-base62 2.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 144 kB
  • sloc: javascript: 308; makefile: 2
file content (7 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
declare namespace base62 {
    export function setCharacterSet(characters: string): void
    export function encode(number: number): string
    export function decode(string: string): number
}

export = base62