@await-widget/runtime 0.0.19 → 0.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/await.d.ts +9 -0
- package/types/bridge.d.ts +1 -0
- package/types/prop.d.ts +4 -0
package/package.json
CHANGED
package/types/await.d.ts
CHANGED
|
@@ -227,6 +227,15 @@ declare module 'await' {
|
|
|
227
227
|
children: NativeView[];
|
|
228
228
|
},
|
|
229
229
|
): NativeView;
|
|
230
|
+
/** This is a fallback for Ticker on iOS 18 and earlier. */
|
|
231
|
+
export function ClockSecond(
|
|
232
|
+
props: ClockSecondValue &
|
|
233
|
+
ID &
|
|
234
|
+
Mods & {
|
|
235
|
+
children: NativeView[];
|
|
236
|
+
},
|
|
237
|
+
): NativeView;
|
|
238
|
+
/** Available on iOS 26 and later. */
|
|
230
239
|
export function Ticker(
|
|
231
240
|
props: TickerValue &
|
|
232
241
|
ID &
|
package/types/bridge.d.ts
CHANGED