ofx4js
Version:
A javascript OFX library, ported from OFX4J
18 lines (17 loc) • 489 B
TypeScript
import { PropertyDescriptorParams, PropertyDescriptor } from "./PropertyDescriptor";
export interface HeaderParams<T> extends PropertyDescriptorParams<T> {
name: string;
}
/**
* An OFX element, applied to a javabean property.
*/
export declare class Header extends PropertyDescriptor {
private _name;
constructor(params: HeaderParams<any>);
/**
* The name of the element.
*
* @return The name of the element.
*/
name(): string;
}