[ts] Fix types: svg width and height are optional

Closes #667
This commit is contained in:
Mikael Sand 2018-12-10 05:39:28 +02:00 коммит произвёл GitHub
Родитель e156844f98
Коммит 8a87f34e23
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

4
index.d.ts поставляемый
Просмотреть файл

@ -282,8 +282,8 @@ export interface StopProps {
export const Stop: React.ComponentClass<StopProps>;
export interface SvgProps extends ReactNative.ViewProperties {
width: NumberProp,
height: NumberProp,
width?: NumberProp,
height?: NumberProp,
viewBox?: string,
preserveAspectRatio?: string,
}