project init & fix ui
This commit is contained in:
24
miniprogram_npm/tdesign-miniprogram/navbar/navbar.d.ts
vendored
Normal file
24
miniprogram_npm/tdesign-miniprogram/navbar/navbar.d.ts
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
import { SuperComponent } from '../common/src/index';
|
||||
export default class Navbar extends SuperComponent {
|
||||
externalClasses: string[];
|
||||
timer: any;
|
||||
options: {
|
||||
addGlobalClass: boolean;
|
||||
multipleSlots: boolean;
|
||||
};
|
||||
properties: import("./type").TdNavbarProps;
|
||||
observers: {
|
||||
visible(this: Navbar, visible: any): void;
|
||||
'title,titleMaxLength'(this: any): void;
|
||||
};
|
||||
data: {
|
||||
prefix: string;
|
||||
classPrefix: string;
|
||||
boxStyle: string;
|
||||
showTitle: string;
|
||||
};
|
||||
attached(): void;
|
||||
methods: {
|
||||
goBack(): void;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user