合伙人运营小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

divider.d.ts 415B

123456789101112131415161718
  1. import { SuperComponent } from '../common/src/index';
  2. export default class Divider extends SuperComponent {
  3. externalClasses: string[];
  4. options: {
  5. multipleSlots: boolean;
  6. };
  7. properties: import("./type").TdDividerProps;
  8. data: {
  9. prefix: string;
  10. classPrefix: string;
  11. };
  12. observers: {
  13. lineColor(): void;
  14. };
  15. methods: {
  16. setStyle(): void;
  17. };
  18. }