UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

21 lines (20 loc) 914 B
import { RVSqlBasedDataSource } from "./RVSqlBasedDataSource"; export declare abstract class RVSqlPDSDataSource extends RVSqlBasedDataSource { private _processDataOnServerDefaultValue; /** Sets the default value for "Process Data on Server" option for this data source, the * end user can still change the value, unless {@link processDataOnServerReadOnly} is true. */ get processDataOnServerDefaultValue(): boolean; set processDataOnServerDefaultValue(value: boolean); private _processDataOnServerReadOnly; /** * When set to true the user will not be allowed to change the value for "Process Data on Server" option * and the default value will be used. */ get processDataOnServerReadOnly(): boolean; set processDataOnServerReadOnly(value: boolean); /** @hidden */ constructor(json?: any); /** @hidden */ toJson(): any; }