mysterium-tequilapi
Version:
Api library to control mysterium client and node
24 lines (22 loc) • 575 B
Flow
// @flow
/**
* Flowtype definitions for access-list
* Generated by Flowgen from a Typescript Definition
* Flowgen v1.5.8
* Author: [Joar Wilk](http://twitter.com/joarwilk)
* Repo: http://github.com/joarwilk/flowgen
*/
declare interface AllowedRule {
type: string;
value: string;
}
export interface AccessListDTO {
name: string;
description: string;
allow: AllowedRule[];
}
declare export function parseAccessListItemDTO(
responseData: any
): AccessListDTO;
declare export function parseAccessListDTO(responseData: any): AccessListDTO[];
declare export {};