Master react (#19439)

chore(react): react rc3 release
This commit is contained in:
Ely Lucas
2019-09-24 11:52:12 -06:00
committed by GitHub
parent e90e960294
commit 61f04e50b1
15 changed files with 71 additions and 39 deletions

View File

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