@@ -316,6 +316,7 @@ export type ReadTreeOptions = {
|
||||
): boolean;
|
||||
etag?: string;
|
||||
signal?: AbortSignal;
|
||||
token?: string;
|
||||
};
|
||||
|
||||
// @public
|
||||
@@ -343,6 +344,7 @@ export type ReadUrlOptions = {
|
||||
etag?: string;
|
||||
lastModifiedAfter?: Date;
|
||||
signal?: AbortSignal;
|
||||
token?: string;
|
||||
};
|
||||
|
||||
// @public
|
||||
|
||||
@@ -145,6 +145,7 @@ export function createFetchPlainAction(options: {
|
||||
{
|
||||
url: string;
|
||||
targetPath?: string | undefined;
|
||||
token?: string | undefined;
|
||||
},
|
||||
JsonObject
|
||||
>;
|
||||
@@ -157,6 +158,7 @@ export function createFetchPlainFileAction(options: {
|
||||
{
|
||||
url: string;
|
||||
targetPath: string;
|
||||
token?: string | undefined;
|
||||
},
|
||||
JsonObject
|
||||
>;
|
||||
@@ -179,6 +181,7 @@ export function createFetchTemplateAction(options: {
|
||||
replace?: boolean | undefined;
|
||||
trimBlocks?: boolean | undefined;
|
||||
lstripBlocks?: boolean | undefined;
|
||||
token?: string | undefined;
|
||||
},
|
||||
JsonObject
|
||||
>;
|
||||
|
||||
@@ -195,6 +195,7 @@ export function fetchContents(options: {
|
||||
baseUrl?: string;
|
||||
fetchUrl?: string;
|
||||
outputPath: string;
|
||||
token?: string;
|
||||
}): Promise<void>;
|
||||
|
||||
// @public
|
||||
@@ -204,6 +205,7 @@ export function fetchFile(options: {
|
||||
baseUrl?: string;
|
||||
fetchUrl?: string;
|
||||
outputPath: string;
|
||||
token?: string;
|
||||
}): Promise<void>;
|
||||
|
||||
// @public (undocumented)
|
||||
|
||||
Reference in New Issue
Block a user