jsdav-ext
Version:
jsDAV allows you to easily add WebDAV support to a NodeJS application. jsDAV is meant to cover the entire standard, and attempts to allow integration using an easy to understand API.
20 lines (17 loc) • 566 B
JavaScript
/*
* @package jsDAV
* @subpackage CardDAV
* @copyright Copyright(c) 2013 Mike de Boer. <info AT mikedeboer DOT nl>
* @author Mike de Boer <info AT mikedeboer DOT nl>
* @license http://github.com/mikedeboer/jsDAV/blob/master/LICENSE MIT License
*/
;
var jsDAV_iCollection = require("./../../DAV/interfaces/iCollection");
/**
* AddressBook interface
*
* Implement this interface to allow a node to be recognized as an addressbook.
*/
var jsCardDAV_iAddressBook = module.exports = jsDAV_iCollection.extend({
// empty.
});