10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
|
declare function plugin(options?: Partial<{ className: string; target: 'modern' | 'legacy' }>): {
|
||
|
handler: () => void
|
||
|
}
|
||
|
|
||
|
declare namespace plugin {
|
||
|
const __isOptionsFunction: true
|
||
|
}
|
||
|
|
||
|
export = plugin
|