Skip to content
This repository has been archived by the owner on Jul 12, 2019. It is now read-only.

add cursor to typings #95

Merged
merged 1 commit into from
Jun 14, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,10 @@ export interface zObject {
inputData: object
) => string;

// coming soon
// cursor: {
// get: () => Promise<string>
// set: (cursor: string) => Promise<void>
// }
cursor: {
get: () => Promise<string>;
set: (cursor: string) => Promise<null>;
};

/**
* turns a file or request into a file into a publicly accessible url
Expand Down