File size: 203 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 |
declare function plugin(options?: Partial<{ className: string; target: 'modern' | 'legacy' }>): {
handler: () => void
}
declare namespace plugin {
const __isOptionsFunction: true
}
export = plugin
|