From 09962644834cc3995cffb3d01422a72556973b71 Mon Sep 17 00:00:00 2001 From: mhartington Date: Wed, 17 May 2017 15:00:00 -0400 Subject: [PATCH] docs(file): set classes to hidden Set classes to hidden to prevent doc generation --- src/@ionic-native/plugins/file/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/@ionic-native/plugins/file/index.ts b/src/@ionic-native/plugins/file/index.ts index 12d06a550..d85e08c66 100644 --- a/src/@ionic-native/plugins/file/index.ts +++ b/src/@ionic-native/plugins/file/index.ts @@ -489,6 +489,7 @@ export declare class FileSaver extends EventTarget { } /** + * @hidden * This interface expands on the FileSaver interface to allow for multiple write actions, rather than just saving a single Blob. */ export declare class FileWriter extends FileSaver { @@ -528,6 +529,7 @@ export interface IWriteOptions { truncate?: number; // if present, number of bytes to truncate file to before writing } +/** @hidden */ export declare class FileError { constructor(code: number); static NOT_FOUND_ERR: number; @@ -547,6 +549,7 @@ export declare class FileError { message: string; } +/** @hidden */ export declare class FileReader { static EMPTY: number; static LOADING: number;