UNPKG

k15t-aui-ng2

Version:

aui-ng2 is a set of angular 2 components, directives and services to simplify the integration with Atlassian products based on AUI/ADG. The library is still under development and is considered in an experimental state. So be aware that things will change

15 lines (14 loc) 367 B
/** * Options for a request. * See: https://developer.atlassian.com/static/connect/docs/latest/javascript/RequestProperties.html. */ export interface AuiNgRequestProperties { url: string; type?: string; cache?: boolean; data?: string; contentType?: string; headers?: any; success?(response: any): any; error?(response: any): any; }