chore: update api-reports

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2024-01-25 20:20:58 +01:00
parent 1e1dd798fa
commit 98753d9bf0
3 changed files with 7 additions and 0 deletions
@@ -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
+3
View File
@@ -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
>;
+2
View File
@@ -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)