10 lines
341 B
C++
10 lines
341 B
C++
#pragma once
|
|
|
|
#include <winrt/RNSVG.h>
|
|
|
|
#include "JSValueXaml.h"
|
|
|
|
namespace winrt::Microsoft::ReactNative {
|
|
void WriteValue(IJSValueWriter const &writer, const winrt::RNSVG::SVGLength &value) noexcept;
|
|
void ReadValue(IJSValueReader const &reader, /*out*/ winrt::RNSVG::SVGLength &value) noexcept;
|
|
} // namespace winrt::Microsoft::ReactNative
|