Skip to content

Commit f3333e0

Browse files
committed
chore(release): @nativescript/types@8.0.1
1 parent edbe13b commit f3333e0

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

packages/types-android/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/types-android",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"description": "NativeScript Types for Android.",
55
"homepage": "https://nativescript.org",
66
"repository": {

packages/types-android/src/lib/android/org.nativescript.widgets.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
export function readText(path: string, encoding: string, callback: CompleteCallback, context: any);
3838
export function read(path: string, callback: CompleteCallback, context: any);
3939
export function writeText(path: string, content: string, encoding: string, callback: CompleteCallback, context: any);
40-
export function write(path: string, content: native.Array<number>, callback: CompleteCallback, context: any);
40+
export function write(path: string, content: androidNative.Array<number>, callback: CompleteCallback, context: any);
4141
}
4242

4343
export module Http {
@@ -108,9 +108,9 @@
108108
context: android.content.Context,
109109
backgroundRepeat: string,
110110
backgroundPosition: string,
111-
backgroundPositionParsedCSSValues: native.Array<CSSValue>,
111+
backgroundPositionParsedCSSValues: androidNative.Array<CSSValue>,
112112
backgroundSize: string,
113-
backgroundSizeParsedCSSValues: native.Array<CSSValue>
113+
backgroundSizeParsedCSSValues: androidNative.Array<CSSValue>
114114
);
115115

116116
public getBorderTopColor(): number;

packages/types-ios/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/types-ios",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"description": "NativeScript Types for iOS.",
55
"homepage": "https://nativescript.org",
66
"repository": {

packages/types/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/types",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"description": "NativeScript Types for all supported platforms.",
55
"homepage": "https://nativescript.org",
66
"repository": {
@@ -12,7 +12,7 @@
1212
],
1313
"license": "Apache-2.0",
1414
"dependencies": {
15-
"@nativescript/types-ios": "8.0.0",
16-
"@nativescript/types-android": "8.0.0"
15+
"@nativescript/types-ios": "8.0.1",
16+
"@nativescript/types-android": "8.0.1"
1717
}
1818
}

tools/scripts/typings-gen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fi
2121

2222
echo "Creating typings project with @nativescript/ios@$IOS_RUNTIME_VERSION..."
2323
rm -rf ios-typings-prj
24-
ns create --js ios-typings-prj
24+
ns create --template @nativescript/template-blank@7.0.4 ios-typings-prj
2525
ns platform add ios@$IOS_RUNTIME_VERSION --path ios-typings-prj/
2626

2727
if [ -n "$METADATA_GENERATOR_PATH" ]

0 commit comments

Comments
 (0)