File: index.d.ts

package info (click to toggle)
node-deprecated 0.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 104 kB
  • sloc: javascript: 107; makefile: 2
file content (4 lines) | stat: -rw-r--r-- 233 bytes parent folder | download | duplicates (2)
1
2
3
4
declare module 'deprecated' {
  export function method <T extends Function>(msg: string, log: (...t: any[]) => void ,t: T): T
  export function field <T, V>(msg: string, log: (...t: any[]) => void , t: T, prop: string, value: V): T
}