Files
Ely Lucas 61f04e50b1 Master react (#19439)
chore(react): react rc3 release
2019-09-24 11:52:12 -06:00

7 lines
189 B
TypeScript

export declare type RouterDirection = 'forward' | 'back' | 'none';
export type HrefProps<T> = Omit<T, 'routerDirection'> & {
routerLink?: string;
routerDirection?: RouterDirection;
};