13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
|
import {IList} from "./IList";
|
||
|
import * as React from "react";
|
||
|
|
||
|
export interface IPages {
|
||
|
pages: IList[];
|
||
|
url: string;
|
||
|
removeUrl: string;
|
||
|
csrf: string;
|
||
|
passphrase: string;
|
||
|
loadPages: React.MutableRefObject<() => void>;
|
||
|
setAllLoaded: React.Dispatch<React.SetStateAction<boolean>>;
|
||
|
}
|