mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
naming fixed
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
// <snippet name="file-system">
|
// <snippet name="file-system">
|
||||||
// # File System
|
// # File System
|
||||||
// Using the file system requires the FileSystem module.
|
// Using the file system requires the FileSystem module.
|
||||||
// TODO: var fs = require("filesystem"); => this will break the intellisense of the tests
|
// TODO: var fs = require("file-system"); => this will break the intellisense of the tests
|
||||||
// ``` JavaScript
|
// ``` JavaScript
|
||||||
import fs = require("file-system/file-system");
|
import fs = require("file-system/file-system");
|
||||||
// ```
|
// ```
|
||||||
|
|||||||
@ -1,2 +1,2 @@
|
|||||||
declare var module, require;
|
declare var module, require;
|
||||||
module.exports = require("filesystem/file_system");
|
module.exports = require("file-system/file_system");
|
||||||
6
ios7.d.ts
vendored
6
ios7.d.ts
vendored
@ -74203,7 +74203,7 @@ declare module UIKit {
|
|||||||
*/
|
*/
|
||||||
delegate: any;
|
delegate: any;
|
||||||
/**
|
/**
|
||||||
* The URL identifying the target file on the local filesystem.
|
* The URL identifying the target file on the local file-system.
|
||||||
* Property for iOS property "URL".
|
* Property for iOS property "URL".
|
||||||
*/
|
*/
|
||||||
URL: Foundation.NSURL;
|
URL: Foundation.NSURL;
|
||||||
@ -78659,7 +78659,7 @@ declare module UIKit {
|
|||||||
/**
|
/**
|
||||||
* Returns a Boolean value indicating whether a video file can be edited.
|
* Returns a Boolean value indicating whether a video file can be edited.
|
||||||
* Method for native iOS method "canEditVideoAtPath:".
|
* Method for native iOS method "canEditVideoAtPath:".
|
||||||
* @param videoPath The filesystem path to the video file you want to edit.
|
* @param videoPath The file-system path to the video file you want to edit.
|
||||||
*/
|
*/
|
||||||
static canEditVideoAtPath(videoPath: string): boolean;
|
static canEditVideoAtPath(videoPath: string): boolean;
|
||||||
/**
|
/**
|
||||||
@ -78668,7 +78668,7 @@ declare module UIKit {
|
|||||||
*/
|
*/
|
||||||
delegate: any;
|
delegate: any;
|
||||||
/**
|
/**
|
||||||
* The filesystem path to the movie to be loaded by the video editor.
|
* The file-system path to the movie to be loaded by the video editor.
|
||||||
* Property for iOS property "videoPath".
|
* Property for iOS property "videoPath".
|
||||||
*/
|
*/
|
||||||
videoPath: string;
|
videoPath: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user