From 5db3e6791523e769530e6c94963ac7fcf8788779 Mon Sep 17 00:00:00 2001 From: Manol Donev Date: Tue, 31 Jul 2018 10:25:52 +0300 Subject: [PATCH] chore: update file-system api reference (#6135) --- tns-core-modules/file-system/file-system.d.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tns-core-modules/file-system/file-system.d.ts b/tns-core-modules/file-system/file-system.d.ts index 30268aad4..ffed227c9 100644 --- a/tns-core-modules/file-system/file-system.d.ts +++ b/tns-core-modules/file-system/file-system.d.ts @@ -219,42 +219,42 @@ export module knownFolders { */ module ios { /** - * Gets the NSLibraryDirectory. + * Gets the NSLibraryDirectory. Note that the folder will not be created if it did not exist. */ export function library(): Folder; /** - * Gets the NSDeveloperDirectory. + * Gets the NSDeveloperDirectory. Note that the folder will not be created if it did not exist. */ export function developer(): Folder; /** - * Gets the NSDesktopDirectory. + * Gets the NSDesktopDirectory. Note that the folder will not be created if it did not exist. */ export function desktop(): Folder; /** - * Gets the NSDownloadsDirectory. + * Gets the NSDownloadsDirectory. Note that the folder will not be created if it did not exist. */ export function downloads(): Folder; /** - * Gets the NSMoviesDirectory. + * Gets the NSMoviesDirectory. Note that the folder will not be created if it did not exist. */ export function movies(): Folder; /** - * Gets the NSMusicDirectory. + * Gets the NSMusicDirectory. Note that the folder will not be created if it did not exist. */ export function music(): Folder; /** - * Gets the NSPicturesDirectory. + * Gets the NSPicturesDirectory. Note that the folder will not be created if it did not exist. */ export function pictures(): Folder; /** - * Gets the NSSharedPublicDirectory. + * Gets the NSSharedPublicDirectory. Note that the folder will not be created if it did not exist. */ export function sharedPublic(): Folder; }