• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/**
2 * the ut for method in interface, method is callSignature
3 */
4export interface Test {
5  (): ButtonAttribute;
6  (options: ButtonOptions): ButtonAttribute;
7  (label: ResourceStr, options?: ButtonOptions): ButtonAttribute;
8}