forked from olcxjas-softworks/LarpixClient
Update gitignore (sorry)
This commit is contained in:
parent
a8f8c4d7ad
commit
cca8b02fea
6604 changed files with 1219661 additions and 4 deletions
90
electron/node_modules/asar/lib/index.d.ts
generated
vendored
Normal file
90
electron/node_modules/asar/lib/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
import { IOptions as GlobOptions } from 'glob';
|
||||
import { Stats } from 'fs';
|
||||
|
||||
export type CreateOptions = {
|
||||
dot?: boolean;
|
||||
globOptions?: GlobOptions;
|
||||
ordering?: string;
|
||||
pattern?: string;
|
||||
transform?: (filePath: string) => NodeJS.ReadWriteStream | void;
|
||||
unpack?: string;
|
||||
unpackDir?: string;
|
||||
};
|
||||
|
||||
export type ListOptions = {
|
||||
isPack: boolean;
|
||||
};
|
||||
|
||||
export type EntryMetadata = {
|
||||
unpacked: boolean;
|
||||
};
|
||||
|
||||
export type DirectoryMetadata = EntryMetadata & {
|
||||
files: { [property: string]: EntryMetadata };
|
||||
};
|
||||
|
||||
export type FileMetadata = EntryMetadata & {
|
||||
executable?: true;
|
||||
offset?: number;
|
||||
size?: number;
|
||||
};
|
||||
|
||||
export type LinkMetadata = {
|
||||
link: string;
|
||||
};
|
||||
|
||||
export type Metadata = DirectoryMetadata | FileMetadata | LinkMetadata;
|
||||
|
||||
export type InputMetadataType = 'directory' | 'file' | 'link';
|
||||
|
||||
export type InputMetadata = {
|
||||
[property: string]: {
|
||||
type: InputMetadataType;
|
||||
stat: Stats;
|
||||
}
|
||||
};
|
||||
|
||||
export type DirectoryRecord = {
|
||||
files: Record<string, DirectoryRecord | FileRecord>;
|
||||
};
|
||||
|
||||
export type FileRecord = {
|
||||
offset: string;
|
||||
size: number;
|
||||
executable?: boolean;
|
||||
integrity: {
|
||||
hash: string;
|
||||
algorithm: 'SHA256';
|
||||
blocks: string[];
|
||||
blockSize: number;
|
||||
};
|
||||
}
|
||||
|
||||
export type ArchiveHeader = {
|
||||
// The JSON parsed header string
|
||||
header: DirectoryRecord;
|
||||
headerString: string;
|
||||
headerSize: number;
|
||||
}
|
||||
|
||||
export function createPackage(src: string, dest: string): Promise<void>;
|
||||
export function createPackageWithOptions(
|
||||
src: string,
|
||||
dest: string,
|
||||
options: CreateOptions
|
||||
): Promise<void>;
|
||||
export function createPackageFromFiles(
|
||||
src: string,
|
||||
dest: string,
|
||||
filenames: string[],
|
||||
metadata?: InputMetadata,
|
||||
options?: CreateOptions
|
||||
): Promise<void>;
|
||||
|
||||
export function statFile(archive: string, filename: string, followLinks?: boolean): Metadata;
|
||||
export function getRawHeader(archive: string): ArchiveHeader;
|
||||
export function listPackage(archive: string, options?: ListOptions): string[];
|
||||
export function extractFile(archive: string, filename: string): Buffer;
|
||||
export function extractAll(archive: string, dest: string): void;
|
||||
export function uncache(archive: string): boolean;
|
||||
export function uncacheAll(): void;
|
||||
Loading…
Add table
Add a link
Reference in a new issue