mirror of
https://github.com/zoriya/yoshiki.git
synced 2026-06-07 04:05:11 +00:00
Bump version number
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "yoshiki",
|
||||
"version": "0.2.3",
|
||||
"version": "0.2.4",
|
||||
"author": "Zoe Roux <zoe.roux@sdg.moe> (https://github.com/AnonymusRaccoon)",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
|
||||
@@ -31,29 +31,29 @@ type AddLO<T, LO> = [LO] extends [never] ? T : Omit<LO, "style"> & T;
|
||||
|
||||
declare function nativeCss<Leftover = never>(
|
||||
cssList: StyleList<EnhancedStyle<ViewStyle>>,
|
||||
leftOvers?: Leftover & { style?: StyleProp<ViewStyle> },
|
||||
leftOvers?: Leftover & { style?: StyleProp<ViewStyle> | null },
|
||||
): AddLO<{ style?: ViewStyle }, Leftover>;
|
||||
declare function nativeCss<Leftover = never>(
|
||||
cssList: StyleList<EnhancedStyle<ViewStyle> & Partial<WithState<EnhancedStyle<ViewStyle>>>>,
|
||||
leftOvers?: Leftover & { style?: StyleProp<ViewStyle> | StyleFunc<StyleProp<ViewStyle>> },
|
||||
leftOvers?: Leftover & { style?: StyleProp<ViewStyle> | StyleFunc<StyleProp<ViewStyle>> | null },
|
||||
): AddLO<{ style?: StyleFunc<ViewStyle> }, Leftover>;
|
||||
|
||||
declare function nativeCss<Leftover = never>(
|
||||
cssList: StyleList<EnhancedStyle<TextStyle>>,
|
||||
leftOvers?: Leftover & { style?: StyleProp<TextStyle> },
|
||||
leftOvers?: Leftover & { style?: StyleProp<TextStyle> | null },
|
||||
): AddLO<{ style?: TextStyle }, Leftover>;
|
||||
declare function nativeCss<Leftover = never>(
|
||||
cssList: StyleList<EnhancedStyle<TextStyle> & Partial<WithState<EnhancedStyle<TextStyle>>>>,
|
||||
leftOvers?: Leftover & { style?: StyleProp<TextStyle> | StyleFunc<StyleProp<TextStyle>> },
|
||||
leftOvers?: Leftover & { style?: StyleProp<TextStyle> | StyleFunc<StyleProp<TextStyle>> | null },
|
||||
): AddLO<{ style?: StyleFunc<TextStyle> }, Leftover>;
|
||||
|
||||
declare function nativeCss<Leftover = never>(
|
||||
cssList: StyleList<EnhancedStyle<ImageStyle>>,
|
||||
leftOvers?: Leftover & { style?: StyleProp<ImageStyle> },
|
||||
leftOvers?: Leftover & { style?: StyleProp<ImageStyle> | null },
|
||||
): AddLO<{ style?: ImageStyle }, Leftover>;
|
||||
declare function nativeCss<Leftover = never>(
|
||||
cssList: StyleList<EnhancedStyle<ImageStyle> & Partial<WithState<EnhancedStyle<ImageStyle>>>>,
|
||||
leftOvers?: Leftover & { style?: StyleProp<ImageStyle> | StyleFunc<StyleProp<ImageStyle>> },
|
||||
leftOvers?: Leftover & { style?: StyleProp<ImageStyle> | StyleFunc<StyleProp<ImageStyle>> | null },
|
||||
): AddLO<{ style?: StyleFunc<ImageStyle> }, Leftover>;
|
||||
|
||||
export type NativeCssFunc = typeof nativeCss;
|
||||
|
||||
Reference in New Issue
Block a user