2016-09-20 15:56:49 +00:00
|
|
|
/// <reference types="vinyl" />
|
2016-07-01 04:07:58 +00:00
|
|
|
/// <reference types="q" />
|
2016-09-20 15:56:49 +00:00
|
|
|
import 'typings-global';
|
|
|
|
import plugins = require('./smartfile.plugins');
|
2016-05-01 21:19:54 +00:00
|
|
|
/**
|
|
|
|
* allows you to create a gulp stream
|
|
|
|
* from String, from an Array of Strings, from Vinyl File, from an Array of VinylFiles
|
|
|
|
* @param fileArg
|
|
|
|
* @returns stream.Readable
|
|
|
|
* @TODO: make it async;
|
|
|
|
*/
|
2016-09-20 15:56:49 +00:00
|
|
|
export declare let toGulpStream: (fileArg: string | string[] | plugins.vinyl | plugins.vinyl[], baseArg?: string) => any;
|
2016-05-01 21:19:54 +00:00
|
|
|
/**
|
|
|
|
* converts file to Object
|
|
|
|
* @param fileStringArg
|
|
|
|
* @param fileTypeArg
|
|
|
|
* @returns {any|any}
|
|
|
|
*/
|
|
|
|
export declare let toObject: (fileStringArg: string, fileTypeArg: string) => any;
|
|
|
|
/**
|
|
|
|
* takes a string and converts it to vinyl file
|
|
|
|
* @param fileArg
|
|
|
|
* @param optionsArg
|
|
|
|
*/
|
|
|
|
export declare let toVinylFileSync: (fileArg: string, optionsArg?: {
|
|
|
|
filename?: string;
|
|
|
|
base?: string;
|
|
|
|
relPath?: string;
|
2016-09-20 15:56:49 +00:00
|
|
|
}) => plugins.vinyl;
|
2016-05-01 21:19:54 +00:00
|
|
|
/**
|
|
|
|
* takes a string array and some options and returns a vinylfile array
|
|
|
|
* @param arrayArg
|
|
|
|
* @param optionsArg
|
|
|
|
*/
|
|
|
|
export declare let toVinylArraySync: (arrayArg: string[], optionsArg?: {
|
|
|
|
filename?: string;
|
|
|
|
base?: string;
|
|
|
|
relPath?: string;
|
|
|
|
}) => any[];
|
|
|
|
/**
|
|
|
|
* takes a vinylFile object and converts it to String
|
|
|
|
*/
|
2016-09-20 15:56:49 +00:00
|
|
|
export declare let toStringSync: (fileArg: plugins.vinyl) => any;
|
2016-05-01 21:19:54 +00:00
|
|
|
/**
|
|
|
|
* writes string or vinyl file to disk.
|
|
|
|
* @param fileArg
|
|
|
|
* @param fileNameArg
|
|
|
|
* @param fileBaseArg
|
|
|
|
*/
|
2016-09-20 15:56:49 +00:00
|
|
|
export declare let toFs: (fileContentArg: string | plugins.vinyl, filePathArg: any) => plugins.q.Promise<{}>;
|
2016-06-24 01:36:51 +00:00
|
|
|
export declare let toFsSync: (fileArg: any, filePathArg: string) => void;
|