instagram-graph-api
Version:
A library to help perform requests to the Instagram Graph API.
17 lines (16 loc) • 378 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Constants = void 0;
/**
* Class containing Constants used throughout the project.
*
* @author Tiago Grosso <tiagogrosso99@gmail.com>
* @since 0.1.0
*/
class Constants {
}
exports.Constants = Constants;
/**
* The URL of the api.
*/
Constants.API_URL = 'https://graph.facebook.com/v9.0';