PDPA Features: ✅ Cookie consent banner ✅ Consent logging API ✅ Admin dashboard ✅ Privacy Policy ✅ Terms & Conditions Technical: ✅ Astro 5.x + Tailwind v4 ✅ Docker on port 80 ✅ SQLite database ✅ 15 pages built Ready for Easypanel deployment.
19 lines
577 B
TypeScript
19 lines
577 B
TypeScript
export class DefinedInfo extends Info {
|
|
/**
|
|
* @constructor
|
|
* @param {string} property
|
|
* Property.
|
|
* @param {string} attribute
|
|
* Attribute.
|
|
* @param {number | null | undefined} [mask]
|
|
* Mask.
|
|
* @param {Space | undefined} [space]
|
|
* Space.
|
|
* @returns
|
|
* Info.
|
|
*/
|
|
constructor(property: string, attribute: string, mask?: number | null | undefined, space?: Space | undefined);
|
|
}
|
|
import { Info } from './info.js';
|
|
import type { Space } from 'property-information';
|
|
//# sourceMappingURL=defined-info.d.ts.map
|