Skip to content

Commit

Permalink
Merge pull request #65 from lchudinov/feature/chtag-options-for-uri-b…
Browse files Browse the repository at this point in the history
…roker

Chtag options for URI Broker
  • Loading branch information
1000TurquoisePogs authored Oct 8, 2020
2 parents acfab92 + bd3b69d commit d279abe
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions interface/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,18 +185,22 @@ declare namespace ZLUX {
}

type UnixFileUriOptions = {
sourceEncoding?: string,
targetEncoding?: string,
newName?: string,
forceOverwrite?: boolean,
sessionID?: number,
lastChunk?: boolean,
responseType?: string,
mode?: string,
recursive?: boolean,
user?: string,
group?: string
sourceEncoding?: string;
targetEncoding?: string;
newName?: string;
forceOverwrite?: boolean;
sessionID?: number;
lastChunk?: boolean;
responseType?: string;
mode?: string;
recursive?: boolean;
user?: string;
group?: string;
type?: TagType;
codeset?: number;
}

type TagType = 'binary' | 'delete' | 'mixed' | 'text';

/**
An interface which allows an App easy access to URIs specific to its own namespace
Expand All @@ -216,7 +220,9 @@ declare namespace ZLUX {
targetEncoding?: string | undefined, newName?: string | undefined,
forceOverwrite?: boolean | undefined, sessionID?: number | undefined,
lastChunk?: boolean | undefined, responseType?: string, mode?: string,
recursive?: boolean, user?: string, group?: string): string;
recursive?: boolean, user?: string, group?: string,
type?: TagType, codeset?: number
): string;
omvsSegmentUri(): string;
rasUri(uri: string): string;
serverRootUri(uri: string): string;
Expand Down

0 comments on commit d279abe

Please sign in to comment.