mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
export declare type RouterDirection = 'forward' | 'back' | 'none';
|
|
|
|
export type HrefProps<T> = Omit<T, 'routerDirection'> & {
|
|
routerLink?: string;
|
|
routerDirection?: RouterDirection;
|
|
};
|