AppJsFile

/**
* The `app.js` file.
*/

Inherit from File

Primary key: oid: int

schema AppJsFile extends File {
  @primary oid: int,
  name: string,
  extension: string,
  relative_path: string,
  location_oid: int
}

AppJsFile::getRelativePath

pub fn getRelativePath(self: AppJsFile) -> string;

AppJsFile::getLocationOid

pub fn getLocationOid(self: AppJsFile) -> int;

AppJsFile::getName

pub fn getName(self: AppJsFile) -> string;

AppJsFile::__all__

Data constraint method.

pub fn __all__(db: JavascriptDB) -> *AppJsFile;

AppJsFile::getExtension

pub fn getExtension(self: AppJsFile) -> string;